home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / comm / bbs / Hydra11.lha / HBBS / System / FileID < prev    next >
Text File  |  1996-07-15  |  3KB  |  86 lines

  1. ; AddDIZ and GetDIZ Options codes..
  2.  
  3. ; {A} is replaced with the full path and filename of the uploaded file
  4. ; {F} is replaced with the filename of the uploaded file
  5. ; {N} is replaced with the filename (but not the extension) of the file
  6. ; {E} is replaced with the extension of the file
  7. ; {W} is replaced with the full path of the WORK directory
  8. ; {P} is replaced with the playpen direcotry
  9. ; {D} is replaced with the full path and filename of the DIZ file to be added/extracted
  10. ;
  11. ; if GetDIZ was set to "LHA e {A} FILE_ID.DIZ {W}" and you uploaded a file called
  12. ; "TEST.LHA" to node 3 then you'd get a command like thus:
  13. ;
  14. ; LHA e HBBS:Nodes/Node3/PlayPen/Test.LHA FILE_ID.DIZ HBBS:Nodes/Node3/Work/
  15. ;
  16. ; FileType is a string that gets printed on the screen so the user can see what type
  17. ; of file the uploaded, e.g. for a .LHA file you might set FileType to "LHA Archive"
  18. ;
  19. ; some programs don't accept full paths for arguments, if this is so then
  20. ; set the option's CDToPlaypen and CDToWork to TRUE to have the extractdiz door
  21. ; change to the required directory before running the program used to add
  22. ; or get the file_id.diz
  23.  
  24. ; this option is the same as CDToWork except that it changes directory to the
  25. ; playpen direcotry for the node instead.  note you can't have both options
  26. ; enabled!
  27.  
  28. ; MaxDizLines (if used) will override the setting in bbs:conferences/<confname>/CONFCONFIG
  29.  
  30. FileExtension_1=LHA
  31. FileType_1=LHA Archive
  32. MaxDIZLines_1=12
  33. AddDIZ_1=LHA <>nil: u -w:t -m {A} FILE_ID.DIZ
  34. Add_CDToWork_1=TRUE
  35. Add_CDToPlayPen_1=FALSE
  36. Add_RenameDIZ_1=TRUE
  37. GetDIZ_1=LHA <>nil: e -m {A} FILE_ID.DIZ
  38. Get_CDToWork_1=TRUE
  39. Get_CDToPlayPen_1=FALSE
  40. Get_RenameDIZ_1=TRUE
  41.  
  42. FileExtension_2=DMS
  43. FileType_2=DMS Packed Disk
  44. AddDIZ_2=DMSDescript <>nil: {D} {A}
  45. Add_CDToWork_2=FALSE
  46. Add_CDToPlayPen_2=FALSE
  47. Add_RenameDIZ_2=FALSE
  48. GetDIZ_2=DMSextract <>nil: {D} {A}
  49. Get_CDToWork_2=FALSE
  50. Get_CDToPlayPen_2=FALSE
  51. Get_RenameDIZ_2=FALSE
  52.  
  53. FileExtension_3=GIF
  54. FileType_3=Graphics Interchange File
  55. AddDIZ_3=GIFDesc <>nil: a {A} {D}
  56. Add_CDToWork_3=FALSE
  57. Add_CDToPlayPen_3=FALSE
  58. Add_RenameDIZ_3=FALSE
  59. GetDIZ_3=GIFDesc <>nil: e {A} {D}
  60. Get_CDToWork_3=FALSE
  61. Get_CDToPlayPen_3=FALSE
  62. Get_RenameDIZ_3=FALSE
  63.  
  64. FileExtension_4=ZIP
  65. FileType_4=Zipped Files
  66. AddDIZ_4=ZIP <>nil: -u {A} FILE_ID.DIZ
  67. Add_CDToWork_4=TRUE
  68. Add_CDToPlayPen_4=FALSE
  69. Add_RenameDIZ_4=TRUE
  70. GetDIZ_4=UNZIP <>nil: -o {A} FILE_ID.DIZ file_id.diz ; UNZIP is case sensitive!
  71. Get_CDToWork_4=TRUE
  72. Get_CDToPlayPen_4=FALSE
  73. Get_RenameDIZ_4=TRUE
  74.  
  75. FileExtension_5=TXT
  76. FileType_5=Text File
  77. MaxDIZLines_5=12
  78. AddDIZ_5=TXTExtract <>nil: a {D} {A}
  79. Add_CDToWork_5=FALSE
  80. Add_CDToPlayPen_5=FALSE
  81. Add_RenameDIZ_5=FALSE
  82. GetDIZ_5=TXTExtract <>nil: e {D} {A}
  83. Get_CDToWork_5=FALSE
  84. Get_CDToPlayPen_5=FALSE
  85. Get_RenameDIZ_5=FALSE
  86.